问题描述今天在爬虫的时候经常遇到Traceback (most recent call last):异常,程序写得比较简陋,没有处理异常,导致爬虫程序经常报错停止。经过调试,发现是爬虫网站不稳定导致连接失败。 解决方法123456789101112maxTryNum = 20for tries in range(maxTryNum): try: response = requests.get(urls[i], headers=headers, timeout=60) with open(dir_name + '/' + file_name,'wb') as f: f.write(response.content) except: if tries < (maxTryNum - 1): continue else: print("Has tried %d times to access url %s, all failed!" % (maxTryNum, urls[i])) break 文章作者: shadow文章链接: http://yoursite.com/2020/07/23/%E7%88%AC%E8%99%ABTraceback%20(most%20recent%20call%20last)_%E5%BC%82%E5%B8%B8/版权声明: 本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 shadow!Python爬虫上一篇修改系统hosts文件解决GitHub访问速度慢下一篇记一次Python爬虫入门 相关推荐 2020-07-22记一次Python爬虫入门 评论